Comments


Overview

Pog supports the standard C++ comment styles for single line comments and comment blocks, using //, /* and */

Note that INI and CSV files use the semicolon ; to comment out individual lines, and do not support multi-line comments.

// This is a single line comment
/* This is a multi line comment
	Debug.PrintString( "This code commented out" );
*/